home *** CD-ROM | disk | FTP | other *** search
/ The Arcade BBS / arcadebbs.zip / arcadebbs / bbstools / WWIV Mods / WWIVMOD.ZIP / MARK01.MOD < prev    next >
Encoding:
Text File  |  1994-01-06  |  3.7 KB  |  80 lines

  1. ``Mark Webster`` WWIVlink #99 AT 17310
  2. Wednesday, December 8, 1993   9:21 pm
  3. 0R: net33: @4076 (via @4061) [06:25 12/10/93]
  4. 0R: net33: @4050 (via @4064) [05:33 12/10/93]
  5. 0R: net33: @4064 (via @1040) [05:10 12/10/93]
  6. 0R: net33: @1040 (via @2050) [23:38 12/09/93]
  7. 0R: net34: @2050 [21:21 12/09/93]
  8. 0R: net34: @2050 (via @1040) [20:16 12/09/93]
  9. 0R: net33: @1040 (via @1023) [21:42 12/09/93]
  10. 0R: net33: @1023 (via @1023) [17:12 12/09/93]
  11. 0R: net33: @3454 [16:31 12/09/93]
  12. 0R: net33: @13468 (via @314) [07:21 12/09/93]
  13. 0R: net33: @314 (via @17313) [06:40 12/09/93]
  14. 0R: net33: @17313 (via @17310) [07:23 12/09/93]
  15. 0R: net33: @17310 [21:23 12/08/93]
  16. ┌────────────────────────────────────────────────────────────────────────────┐
  17. │ Mod Name: MARK01.MOD       Mod Authors: Mark Webster  (1@NONE WWIV/IceNET) │
  18. │ Difficulty: ▓░░░░░░░░░     [08DEC93]                   (1@NONE  FEARnet)   │
  19. │ WWIV Version: 4.23                                     (1@NONE  WWIVlink)  │
  20. │ Files Affected: BBS.C                                  (1@NONE  TERRAnet)  │
  21. │ Description: Prompts sysop if he is sure he wants to exit the BBS and also │
  22. │ asks if the SysOp wishes to take the phone off-hook.                       │
  23. ╞═────────────────────────────────────═╤═───────────────────────────────────═╡
  24. │ Programmer's Utopia (703)257-7524 14.4k 1.8 Gigs, nearly 2,500 programming │
  25. │                                 files online!                              │
  26. ╘═────────────────────────────────────═╧═───────────────────────────────────═╛
  27.  
  28. ═[Disclaimer]═══════════════════════════════════════════════════════════════
  29.  
  30.  This mod works fine on my BBS and should do you no harm as well.  However,
  31.  if your system should blow up, or your house float away in a flood; I'm in
  32.  no way responsible for these super-natural events.
  33.  
  34. ═[Legend]═══════════════════════════════════════════════════════════════════
  35.  
  36.  /* ++ */ -- Mod add
  37.  /* == */ -- Original code
  38.  /* += */ -- Source code changed
  39.  
  40.  For your convience I've put the signs in comments so you don't have to worry
  41.  about them!
  42.  
  43. ═[MOD begins - Step 1]══════════════════════════════════════════════════════
  44.  
  45. You know the drill, back up that source code, or comment out the original
  46. unchanged source code (which is probably the best way to do it)!
  47.  
  48. ═[Step 2]═══════════════════════════════════════════════════════════════════
  49.  
  50.  
  51. Search for void getcaller(void)...
  52.  
  53.  
  54. void getcaller(void)
  55. .                       /* and several 10s of lines down! */
  56. .
  57. .
  58. /* == */ case 'Q':
  59. /* == */  outstr(get_string(1043));
  60. /* += */  if (yn()) {                        /* Mark mod#01 - change 08DEC93 */
  61. /* ++ */    outstr("Take phone off-hook?");  /* Mark mod#01 - add 08DEC93 */
  62. /* ++ */    if (yn())                        /* Mark mod#01 - add 08DEC93 */
  63. /* ++ */       holdphone(1);                 /* Mark mod#01 - add 08DEC93 */
  64. /* ++ */  }                                  /* Mark mod#01 - add 08DEC93 */
  65. /* += */  end_bbs(QUIT_LEVEL);               /* Mark mod#01 - change 08DEC93 */
  66. /* ++ */  clrscrb();                         /* Mark mod#01 - add 08DEC93 */
  67. /* == */  break;
  68. /* == */ case 27:
  69. /* == */  outstr(get_string(1043));
  70. /* += */  if (yn()) {                        /* Mark mod#01 - change 08DEC93 */
  71. /* ++ */    outstr("Take phone off-hook?");  /* Mark mod#01 - add 08DEC93 */
  72. /* ++ */    if (yn())                        /* Mark mod#01 - add 08DEC93 */
  73. /* ++ */       holdphone(1);                 /* Mark mod#01 - add 08DEC93 */
  74. /* ++ */  }                                  /* Mark mod#01 - add 08DEC93 */
  75. /* += */  end_bbs(QUIT_LEVEL);               /* Mark mod#01 - change 08DEC93 */
  76. /* == */  clrscrb();
  77. /* == */  break;
  78.  
  79. ═[EOF]════════════════════════════════════════════════════════════════════════
  80.